home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 7 / tlxnew.zip / ESNEW.SLT
Text File  |  1989-08-05  |  1KB  |  53 lines

  1. //Salt script for capturing new files on Exec PC
  2. //Don't forget to compile this script after editing it with
  3. // a pure ASCII editor susch as PC Write. Enjoy!
  4.  
  5.  main()
  6.  {
  7.  Waitfor ("name ->");
  8.  cputs ("FIRST^M");                     //put your first name here
  9.  Waitfor ("name ->");
  10.  cputs ("LAST^M");                      //put your last name here
  11.  Waitfor ("word ->");
  12.  cputs ("WORD^M");                      //put password here
  13.  waitfor ("->");
  14.  cputs ("Q^M");
  15.  Waitfor ("TOP",7000); 
  16.  cputs ("F^M");
  17.  Waitfor ("SELECTION",7000);
  18.  cputs ("A^M",7000);
  19.  Waitfor ("?=HELP) ->",7000);
  20.  cputs ("N^M",7000);
  21.  
  22.  int f;
  23.  f=fopen("C:\TELIX\WISC.NEW","a+");     //put your path here
  24.  capture ("C:\TELIX\WISC.NEW");         //path again
  25.  
  26.  Waitfor ("Fiddle/?=help)",70000);
  27.  cputs ("Y^M");
  28.  
  29.  Capture ("*CLOSE*");
  30.  
  31.  Waitfor ("HELP) ->",70000);
  32.  cputs ("C^M");
  33.  Waitfor ("SELECTION",70000);
  34.  cputs ("H^M");
  35.  Waitfor ("?=HELP) ->",70000);
  36.  cputs ("N^M");
  37.  
  38.  Capture ("C:\TELIX\WISC.NEW");         //path again
  39.  
  40.  Waitfor ("Fiddle/?=help)",70000);
  41.  cputs ("Y^M");
  42.  
  43.  Capture ("*CLOSE*");
  44.  
  45.  Waitfor ("FILE MENU",70000);
  46.  cputs ("G^M");
  47.  Waitfor ("choice -->",70000);
  48.  cputs ("N^M");
  49.  Waitfor ("NO CARRIER",70000);
  50.  clear_scr();
  51.  }
  52.  
  53.